home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / linux / src / atalnx_3.lzh / atari-linux-0.01pl3 / tools / atari / bootstra.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-15  |  632 b   |  28 lines

  1. /*
  2. ** bootstrap.h -- This file is a part of the Atari bootloader.
  3. **
  4. ** Copyright 1994 by Björn Brauel
  5. **
  6. ** This file is subject to the terms and conditions of the GNU General Public
  7. ** License.  See the file README.legal in the main directory of this archive
  8. ** for more details.
  9. **
  10. */
  11.  
  12. #ifndef BOOTSTRAP_H 
  13. #define BOOTSTRAP_H
  14.  
  15.  
  16. extern long get_nlist (const char *fname, const char *symname);
  17.  
  18.  
  19. void cache_off (void);
  20. void change_stack(void *);
  21. void disable_mmu (void);
  22. void jump_to (unsigned long addr);
  23. void raise_int(void);
  24. void *copy_kernel(void);
  25. void *copy_kernel_end(void);
  26.  
  27. #endif  BOOTSTRAP_H
  28.